home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 1176 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  557 b 

  1. Path: ccc.govt.nz!mcauslanb
  2. From: mcauslanb@ccc.govt.nz
  3. Newsgroups: comp.lang.c
  4. Subject: void pointers
  5. Date: 12 Jan 96 13:33:22 NZDT
  6. Organization: Christchurch City Council, New Zealand.
  7. Message-ID: <1996Jan12.133322.1@ccc.govt.nz>
  8. NNTP-Posting-Host: durin.ccc.govt.nz
  9.  
  10. I am writing a C program for an application that has a development language 
  11. based on ANSI C.
  12.  
  13. A function that I need to call is defined:
  14.     void getFence (void **clipPP);
  15.  
  16.    where "clipPP" is returned by the function.
  17.  
  18. 1) How do I declare and pass clipPP?
  19. 2) What is actually going on?
  20.  
  21.